home *** CD-ROM | disk | FTP | other *** search
/ Mobiclic 92 / MOBICLIC 92.ISO / pc / DATA / INTRO / INTRO.dir / 00005_Script_CLICK_ZAP < prev    next >
Text File  |  2007-02-21  |  393b  |  26 lines

  1. global gLien
  2. property pEtat
  3. -----------------
  4. on beginSprite me
  5.   pEtat = 0
  6. end
  7. -----------------
  8. on mouseDown me
  9.   case(gLien) of
  10.     ":":
  11.       gereClic()
  12.     "\":
  13.       if _key.optionDown then gereClic()
  14.   end case
  15. end
  16. ---------------
  17. on gereClic
  18.   case(pEtat) of
  19.     0:
  20.       pEtat = 1
  21.       _movie.go("FIN JEUNESSE")
  22.     1:
  23.       noting
  24.   end case
  25. end
  26. -----------